From 59666f4a15e7e1a675a285dfd814523b660a56b7 Mon Sep 17 00:00:00 2001 From: robertl Date: Sun, 31 Oct 2010 19:03:29 +0000 Subject: [PATCH] Michael Cooper adds FlySight support. git-svn-id: http://gpsbabel.googlecode.com/svn/trunk@4041 f51c46e8-681c-474f-0cfe-069cfd0219fb --- gpsbabel/style/flysight.style | 28 ++++++++++++++++++++++++++++ gpsbabel/xmldoc/formats/flysight.xml | 6 ++++++ 2 files changed, 34 insertions(+) create mode 100644 gpsbabel/style/flysight.style create mode 100644 gpsbabel/xmldoc/formats/flysight.xml diff --git a/gpsbabel/style/flysight.style b/gpsbabel/style/flysight.style new file mode 100644 index 000000000..9d49cbe69 --- /dev/null +++ b/gpsbabel/style/flysight.style @@ -0,0 +1,28 @@ +# Format: FlySight +# Author: LukeH +# Date: 10/10/10 + +DESCRIPTION FlySight GPS File +EXTENSION csv + +# FILE LAYOUT DEFINITIIONS: +FIELD_DELIMITER COMMA +RECORD_DELIMITER NEWLINE +BADCHARS ," + +PROLOGUE time lat lon hMSL velN velE velD hAcc vAcc sAcc gpsFix numSV +PROLOGUE + +# INDIVIDUAL DATA FIELDS, IN ORDER OF APPEARANCE: +IFIELD ISO_TIME, "", "%s" # Date & time +IFIELD LAT_DECIMAL, "", "%f" # Latitude +IFIELD LON_DECIMAL, "", "%f" # Longitude +IFIELD ALT_METERS, "", "%.0f" # Altitude above MSL (m) +IFIELD IGNORE, "", "%s" # Velocity north (m/s) +IFIELD IGNORE, "", "%s" # Velocity east (m/s) +IFIELD IGNORE, "", "%s" # Velocity down (m/s) +IFIELD IGNORE, "", "%s" # Horizontal accuracy (m) +IFIELD IGNORE, "", "%s" # Vertical accuracy (m) +IFIELD IGNORE, "", "%s" # Speed accuracy (m/s) +IFIELD GPS_FIX, "", "%s" # GPS fix type +IFIELD GPS_SAT, "", "%d" # Number of satellites used in fix \ No newline at end of file diff --git a/gpsbabel/xmldoc/formats/flysight.xml b/gpsbabel/xmldoc/formats/flysight.xml new file mode 100644 index 000000000..2e595ca7d --- /dev/null +++ b/gpsbabel/xmldoc/formats/flysight.xml @@ -0,0 +1,6 @@ + +This is the format used by the FlySight GPS for wingsuit pilots. + + +Interfacing with the FlySight is pretty simple. FlySight acts like a USB disk when connected to a computer. Files are organized into folders by date, and individual files within the folder are named according to the time the log started (UTC). The files themselves are CSV text supported by this format. + -- 2.30.2